home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Genie / Projects / Pedestal / Source / Includes / PedHandlerQuit.hh < prev    next >
Encoding:
Text File  |  2000-06-24  |  335 b   |  21 lines

  1. /*    =================
  2.  *    PedHandlerQuit.hh
  3.  *    =================
  4.  */
  5.  
  6. #pragma once
  7.  
  8. #include "AEAHandlerQuit.hh"
  9.  
  10. class PedApplication;
  11.  
  12. class PedHandlerQuit : public AEAHandlerQuit {
  13. public:
  14.     PedHandlerQuit(PedApplication &inApp);
  15.     virtual ~PedHandlerQuit() {}
  16.     virtual void NotifyAppQuitEvent();
  17.     
  18. protected:
  19.     PedApplication &mApp;
  20. };
  21.